home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Games 1996 July
/
Amiga Games 1996 #7.iso
/
archive
/
userbox
/
publicdomain
/
chunker.lha
/
Chunker
/
source
/
makefile
< prev
next >
Wrap
Makefile
|
1996-04-01
|
484b
|
32 lines
#
# Unix Makefile for chunker
#
#
#CC = CC
CC = gcc
OPTIMISE = -O2
all: dechunk chunker
chunker: chunker.o machine.o bfn.o
$(CC) $(OPTIMISE) -o $@ chunker.o machine.o bfn.o
dechunk: dechunk.o machine.o bfn.o
$(CC) $(OPTIMISE) -o $@ dechunk.o machine.o bfn.o
machine.o: machine.c
$(CC) $(OPTIMISE) -c machine.c
bfn.o: bfn.c
$(CC) $(OPTIMISE) -c bfn.c
chunker.o: chunker.c
$(CC) $(OPTIMISE) -c chunker.c
dechunk.o: dechunk.c
$(CC) $(OPTIMISE) -c dechunk.c
clean:
rm *.o